docs: add wearable setup guides and examples#62
Conversation
There was a problem hiding this comment.
Codex Review: Here are some suggestions.
Reply with @codex fix comments to fix any unresolved comments.
About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you open a pull request for review, mark a draft as ready, or comment "@codex review". If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex fix this CI failure" or "@codex address that feedback".
| "strict": true, | ||
| "target": "esnext", | ||
| "verbatimModuleSyntax": true | ||
| } | ||
| }, | ||
| "exclude": ["node_modules", "examples"] |
There was a problem hiding this comment.
[P1] Exclude new examples from TypeScript build
Adding "exclude": ["node_modules", "examples"] here only affects tsc --noEmit, because tsconfig.build.json defines its own exclude array and overrides this change. When yarn prepare (bob build) runs, the TypeScript project referenced in tsconfig.build.json still compiles the new files in examples/, which fail with missing modules and unused variables, causing the build to stop. To avoid blocking yarn prepare/publishing, tsconfig.build.json also needs to exclude the examples folder.
Useful? React with 👍 / 👎.
Summary
Testing
yarn lint(fails: eslint-plugin-ft-flow missing)yarn test(fails: Cannot find module '@react-native/babel-preset')npx tsc --noEmithttps://chatgpt.com/codex/tasks/task_e_68b7027cbff8832086ce6d4e58abca7d